home *** CD-ROM | disk | FTP | other *** search
-
- /* $Id: CellScrollView.h,v 1.1.1.1 1993/03/18 03:31:22 davis Exp $ */
-
- /*
- * This ScrollView/Matrix combo is based heavily on the NeXTSTEP
- * MiniExample CellScrollView by R. Dunbar Poor and Mai Nguyen.
- */
-
- #import <appkit/ScrollView.h>
- #import <objc/List.h>
-
- @interface CellScrollView:ScrollView
- {
- id cellMatrix; /* Underlying Matrix */
- id cellClass; /* The class object of the cell */
- }
-
- - init;
- - initFrame:(const NXRect *)frameRect;
- - initMatrix:classId; /* Must be called before used */
- - free;
-
- - cellMatrix;
- - loadCellsFrom:(List *)cellObjects; /* Reload & redisplay the list */
-
- @end
-